	

	


	include	vec_mas.o
	include	vec_slv.o
	include	init.o



	
	if	def(oldcode)

	.vect	0x200c000 :
	{	
		*(.vect)
	}

	.text	0x200c800 :
	{
		_text_start = .;
		*(.prog)
		*(.text)
		*(.strings)
		_text_end = .;
	}

	.tors	ALIGN (0x10) :
	{
		___ctors = . ;
		*(.ctors)
		___ctors_end = . ;
		___dtors = . ;
		*(.dtors)
		___dtors_end = . ;
	}

	.data	0x6000000 (NOLOAD) :
	{
		_data_start = . ;
		* (.data)
		_data_end = . ;
	}

	.bss	ALIGN (0x10) (NOLOAD) :
	{
		_bss_start = . ;
		*(.bss)
		* ( COMMON )
		_bss_end = . ;
		_end = . ;
 	}


	endif
